home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-24 | 537 b | 30 lines | [TEXT/MPS ] |
- ; TrashHack.a
- ; by Jase
-
- ; this patch checks to see whether the Finder is drawing the "Trash"
- ; if so, the string is butchered to represent the size of the trash in K
-
- INCLUDE 'SysEqu.a'
- INCLUDE 'ToolEqu.a'
- INCLUDE 'Traps.a'
-
- IMPORT TRASHHACK
-
- DRAWSTRINGPATCH proc export
-
- ; arrive here when someone calls DrawString (trap A884)
-
- ; go off and do the biz
- move.l $4(sp), -(sp)
- jsr TRASHHACK
-
- Finish
-
- ; jump off to the original patch destination
- ; patched by installer
- dc.w $4ef9
- dc.w $ffff
- dc.w $ffff
-
- end
-